Boston Linux & UNIX was originally founded in 1994 as part of The Boston Computer Society. We meet on the third Wednesday of each month, online, via Jitsi Meet.

Linux and Commercial UNIX: Adversaries or Bedfellows?

Date and Time

Wednesday, April 17, 1996 from 7:00 pm to 9:00 pm

Location

MIT Building 4-163

Presenters

--> -->
 
 
<type 'exceptions.ValueError'>
Python 2.7.5: /usr/bin/python
Fri Sep 18 23:32:28 2026

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /srv/www/cgi-bin/calendar in ()
    590   print '</html>'
    591 
    592 if __name__ == '__main__':
=>  593   main()
    594 
main = <function main>
 /srv/www/cgi-bin/calendar in main()
     37     if row_exists(dbh, 'events', path_info):
     38       print_html_header('BLU event: %s' % path_info)
=>   39       show_event(dbh, path_info)
     40     else:
     41       print_html_header('Nonexistent BLU event')
global show_event = <function show_event>, dbh = <connection object at 0x7f642ecc77f8; dsn: 'dbna...t='localhost' password=xxxxxxxxxxxxx', closed: 0>, global path_info = '1996-apr'
 /srv/www/cgi-bin/calendar in show_event(dbh=<connection object at 0x7f642ecc77f8; dsn: 'dbna...t='localhost' password=xxxxxxxxxxxxx', closed: 0>, evt_id='1996-apr')
    167         print '<p><strong>%s</strong></p>' % label
    168       for row in rows:
=>  169         show_person(dbh, row['pers_id'], 1)
    170         if row['bio']:
    171           bios[row['pers_id']] = row['bio']
global show_person = <function show_person>, dbh = <connection object at 0x7f642ecc77f8; dsn: 'dbna...t='localhost' password=xxxxxxxxxxxxx', closed: 0>, row = ['maddog ', 'Jon "maddog" Hall is the B...d his MSCS from RPI in Troy, New York (1977).\n']
 /srv/www/cgi-bin/calendar in show_person(dbh=<connection object at 0x7f642ecc77f8; dsn: 'dbna...t='localhost' password=xxxxxxxxxxxxx', closed: 0>, pers_id='maddog ', show_link=1)
    340       email = 'no-such-user@example.com'
    341     print '<img src="%s" width=32 height=32 />' % gravatar(email, 32)
=>  342     print nicename(row['name'], pers_id, show_link)
    343     if row['title']: print ', %s' % row['title']
    344     if row['org_name']:
global nicename = <function nicename>, row = ['Jon "maddog" Hall', None, None, 'Jon "maddog" ...', 'jon.maddog.hall@gmail.com', None, None, None], pers_id = 'maddog ', show_link = 1
 /srv/www/cgi-bin/calendar in nicename(name='Jon "maddog" Hall', pers_id='maddog ', show_link=1)
    371 
    372 def nicename(name, pers_id=None, show_link=None):
=>  373   pre,sur,post = name.split('/')
    374   name = '%s<strong>%s</strong>%s' % (pre,sur,post)
    375   link = '<a target="_blank" href="%s/speakers/%s">%s</a>' % (script_name, pers_id, name)
pre undefined, sur undefined, post undefined, name = 'Jon "maddog" Hall', name.split = <built-in method split of str object>

<type 'exceptions.ValueError'>: need more than 1 value to unpack
      args = ('need more than 1 value to unpack',)
      message = 'need more than 1 value to unpack'